home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / traceroute-1.0.lha / traceroute / src / traceroute_ixsupport.c < prev    next >
C/C++ Source or Header  |  1994-05-09  |  264b  |  19 lines

  1. #include <proto/exec.h>
  2. #include <stdio.h>
  3.  
  4.  
  5. /* obtain our own unique process number */
  6.  
  7. int getpid(void)
  8. {
  9.         return((int)FindTask(NULL));
  10. }
  11.  
  12.  
  13. /* set buffering of a stream to 'line buffered' */
  14.  
  15. void setlinebuf(FILE *stream)
  16. {
  17.       stream->_flag|=_IOLBF;
  18. }
  19.